home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-09-02 | 950 b | 28 lines | [TEXT/CCL2] |
- (in-package cl-user)
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;; load-menus.lisp
- ;;
- ;; Copyright © 1992 University of Toronto, Department of Computer Science
- ;; All Rights Reserved
- ;;
- ;; author: Mark A. Tapia
- ;;
- ;; Edit this file and change the directory structure if the
- ;; menu enhancements are not stored in the "menu enhancements" folder
- ;; in the main CCL directory
- ;;
- ;; Load this file when running MCL2.0 final
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (defparameter mcl-final t)
- (defparameter menu-dir nil)
-
- (setf (logical-pathname-translations "menu-dir")
- (list (list (concatenate 'string "menu-dir:**;*.*")
- (concatenate 'string "ccl:menu enhancements;**;*.*"))))
- (setq menu-dir "menu-dir:")
- (load (format nil "~amake-menus.lisp" menu-dir))
- (set-mac-default-directory (mac-directory-namestring menu-dir))
-
- (use-package 'menus)
- (menus::load-menus)
-